/* Generated By:JJTree: Do not edit this line. ASTLine.java */

public class ASTLine extends SimpleNode {
  public ASTLine(int id) {
    super(id);
  }

  public ASTLine(drawsimple p, int id) {
    super(p, id);
  }

  public String generate()
  {
    String returns = " ";
    return = returns += "<line x1=\"" + ((ASTInt) jjtGetChild(0)).val +
        "\" y1=\"" + ((ASTInt) jjtGetChild(1)).val +
        "\" x2=\"" + ((ASTInt) jjtGetChild(2)).val +
        "\" y2=\"" + ((ASTInt) jjtGetChild(3)).val +
        "\" stroke=\"black\" stroke-width=\"1\"/>";
  }

}
